123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- .page {
- height: 100%;
- }
- .Rankpage {
- padding: 0.1rem;
- }
- .top {
- display: flex;
- align-items: stretch;
- background: linear-gradient(to bottom, #484a4c, #181a1c);
- border-radius: 0.2rem;
- padding: 0.06rem;
- div {
- border-radius: 0.15rem;
- border: 1px solid #35363a;
- background: #1a1a20;
- }
- .topIcon {
- width: 0.3rem;
- height: 0.3rem;
- margin-right: 0.1rem;
- display: flex;
- align-items: center;
- justify-content: center;
- img {
- width: 70%;
- }
- }
- .topContent {
- flex: 1;
- box-sizing: border-box;
- padding: 0 0.1rem;
- display: flex;
- align-items: center;
- }
- }
- .rankItem {
- background-size: 100% 100%;
- border-radius: 0.15rem;
- border: 1px solid #767779;
- overflow: hidden;
- height: 2.1rem;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- margin-bottom: 0.1rem;
- .rankTop {
- padding: 0.1rem 0.1rem 0 0.1rem;
- width: 60%;
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- .rankTitle {
- font-size: 0.18rem;
- font-weight: 700;
- line-height: 1.1;
- margin-bottom: 0.1rem;
- }
- .rankMoney {
- background-image: url("/rank/money_bg.webp");
- background-size: 100% 100%;
- background-repeat: no-repeat;
- }
- .rankMoneyText {
- font-size: 0.2rem;
- background: linear-gradient(to bottom, #f8e0b8, #e9a651);
- background-clip: text;
- -webkit-background-clip: text;
- color: transparent;
- padding: 0.08rem 0.15rem;
- font-weight: 700;
- }
- }
- .rankFooter {
- padding: 0.1rem 0.15rem;
- background-color: rgba(255, 255, 255, 0.15);
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- }
|